home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / misc / cookie21.lha / Cookie / Makefile < prev    next >
Makefile  |  1995-08-22  |  531b  |  30 lines

  1. # makefile for karl's PD fortune cookie program
  2. # edited and bugfixed for SAS/C [J÷G]
  3.  
  4. all: cookie cookhash
  5.  
  6. onecookie:
  7.     echo "Onecookie won't work with this \
  8.             version of the cookie program. Sorry."
  9.  
  10. cookie: cookie.o r250.o
  11.     $(CC) LINK cookie.o r250.o
  12.  
  13. cookie.o: cookie.c cookie.h r250.h
  14.  
  15. r250.o: r250.c r250.h
  16.  
  17. cookhash: cookhash.o
  18.     $(CC) LINK cookhash.o
  19.  
  20. cookhash.o: cookhash.c
  21.  
  22. cookhash.c: cookhash.lex
  23.     flex -t -v cookhash.lex >cookhash.c
  24.  
  25. clean:
  26.     Delete \#?.o \#?.lnk cookhash.c
  27.  
  28. reallyclean: clean
  29.     Delete cookie cookhash
  30.